Skip to main content
This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! Edit on GitHub
This node implements the Epsilon Scaling method from the research paper “Elucidating the Exposure Bias in Diffusion Models.” It works by scaling the predicted noise during the sampling process to help reduce exposure bias, which can lead to improved quality in the generated images. This implementation uses the “uniform schedule” recommended by the paper.

Inputs

ParameterData TypeRequiredRangeDescription
modelMODELYes-The model to which the epsilon scaling patch will be applied.
scaling_factorFLOATNo0.5 - 1.5The factor by which the predicted noise is scaled. A value greater than 1.0 reduces the noise, while a value less than 1.0 increases it (default: 1.005).

Outputs

Output NameData TypeDescription
modelMODELA patched version of the input model with the epsilon scaling function applied to its sampling process.